ImageGear v26.3 - Updated November 9, 2022
ImageGear.Core Assembly / ImageGear.Processing Namespace / IGDoubleMatrix Class / MultiplyByVector Method / MultiplyByVector(UInt32[],UInt32[]) Method
Vector value.
Result vector value.




In This Topic
MultiplyByVector(UInt32[],UInt32[]) Method
In This Topic
Multiplies matrix by vector.
Syntax
'Declaration
 
Public Overloads Sub MultiplyByVector( _
   ByVal vectorToMultiply() As UInteger, _
   ByVal resultVector() As UInteger _
) 
 
'Usage
 
Dim instance As IGDoubleMatrix
Dim vectorToMultiply() As UInteger
Dim resultVector() As UInteger
 
instance.MultiplyByVector(vectorToMultiply, resultVector)

Parameters

vectorToMultiply
Vector value.
resultVector
Result vector value.
Remarks
Result vector should has length same as matrix row count.
See Also